24 lines
317 B
C++
24 lines
317 B
C++
/*
|
|
* Editor.h
|
|
*
|
|
* Created on: Apr 30, 2016
|
|
* Author: beckermj
|
|
*/
|
|
|
|
#ifndef EDITOR_H_
|
|
#define EDITOR_H_
|
|
|
|
namespace UniversalEditor {
|
|
namespace UserInterface {
|
|
|
|
class Editor {
|
|
public:
|
|
Editor();
|
|
virtual ~Editor();
|
|
};
|
|
|
|
} /* namespace UserInterface */
|
|
} /* namespace UniversalEditor */
|
|
|
|
#endif /* EDITOR_H_ */
|