InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CDatabaseObserver.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Paul Messmer
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __CDatabaseObserver__
25 #define __CDatabaseObserver__
26 
27 #include "IDataBase.h"
28 #include "IDatabaseObserver.h"
29 
30 
40 {
41 public:
42  virtual void SetDirty(IDataBase *db, UID id, ClassID clsID, ImplementationID tag, const bool16 dbModified);
43  virtual void NewUID(IDataBase *db, UID id, ClassID clsID);
44  virtual void DeleteUID(IDataBase *db, UID id, ClassID clsID);
45  virtual void UndeleteUID(IDataBase *db, UID id, ClassID clsID);
46  virtual void DestroyDeletedUID(IDataBase *db, UID id);
47  virtual void BeginTransaction(IDataBase *db);
48  virtual void EndTransaction(IDataBase *db);
49  virtual void SetModified(IDataBase *db, bool16 modified);
50  virtual void AttachedTo(IDataBase* db);
51 };
52 
53 
54 #endif