sic/src/sicccobject.cc

15 lines
249 B
C++
Raw Normal View History

2013-11-22 02:02:03 +01:00
#include <iostream>
#include <string>
#include <cstdlib>
class Sicccobject {
public:
std::string filename;
std::string filetype;
std::string size;
// something for date
Sicccobject();
~Sicccobject();
};