1 /* 2 * Copyright 2013, Stephan Aßmus <superstippi@gmx.de>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef TEXT_DOCUMENT_TEST_H 6 #define TEXT_DOCUMENT_TEST_H 7 8 9 #include <Application.h> 10 11 12 class TextDocumentTest : public BApplication { 13 public: 14 TextDocumentTest(); 15 virtual ~TextDocumentTest(); 16 17 virtual void ReadyToRun(); 18 }; 19 20 21 #endif // TEXT_DOCUMENT_TEST_H 22