Doesn't do anything yet. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30255 a95241bf-73f2-0310-859d-f6bbb57e9c96
20 lines
266 B
C++
20 lines
266 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef MAIN_MODEL_H
|
|
#define MAIN_MODEL_H
|
|
|
|
|
|
class MainModel {
|
|
public:
|
|
MainModel();
|
|
~MainModel();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
|
|
#endif // MAIN_MODEL_H
|