git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
23 lines
846 B
C++
23 lines
846 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef TimelineNotesFormUH
|
|
#define TimelineNotesFormUH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TTimelineNotesForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TMemo *Memo1;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TTimelineNotesForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TTimelineNotesForm *TimelineNotesForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|