initial commit
[raggin.git] / src / data.hpp
blob89f7737cc77664ec3b9918d67b040303cf307b97
1 #ifndef data_hpp_INCLUDED
2 #define data_hpp_INCLUDED
4 #include <boost/shared_ptr.hpp>
5 #include <string>
6 #include "command.hpp"
9 namespace raggin
11 class data : public command
13 public:
14 data();
15 data(std::string cmd_name);
19 #endif