00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ATLFAST_ATLFASTDUMPEROBJECT_H
00009 #define ATLFAST_ATLFASTDUMPEROBJECT_H
00010
00011 #ifndef STD_STRING_H
00012 #include <string>
00013 #define STD_STRING_H
00014 #endif
00015
00016 namespace Atlfast{
00017
00018 class IKinematic;
00019
00020 class AtlfastDumperObject{
00021 public:
00022 AtlfastDumperObject(const std::string& location,
00023 const std::string& coordinates,
00024 std::string inset="");
00025
00026 void operator()(const IKinematic*)const ;
00027 private:
00029 std::string m_front;
00030 std::string m_coordinates;
00031 };
00032 }
00033
00034 #endif