00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ATLFAST_ATLFASTDUMPCOOROBJECT_H
00009 #define ATLFAST_ATLFASTDUMPCOOROBJECT_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 AtlfastDumpCoorObject{
00021 public:
00022 AtlfastDumpCoorObject(const std::string& coordinates);
00023 void operator()(const IKinematic*)const ;
00024 private:
00026 std::string m_coordinates;
00027 };
00028 }
00029
00030 #endif