9 lines
105 B
C++
9 lines
105 B
C++
#ifndef FOLDER_CLASS
|
|
#define FOLDER_CLASS
|
|
|
|
#include "Object.h"
|
|
|
|
class Folder : public Object {
|
|
};
|
|
|
|
#endif |