Logo ROOT   6.10/09
Reference Guide
TRootIOCtor.h
Go to the documentation of this file.
1 // @(#)root/meta:$Id$
2 // Author: Philippe Canal 15/03/2005
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TRootIOCtor
13 #define ROOT_TRootIOCtor
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // TRootIOCtor //
18 // //
19 // Helper class used to mark a constructor to be used by ROOT instead //
20 // of the default constructor. //
21 // If rootcint sees in a class declaration of the class MyClass: //
22 // MyClass(TRootIOCtor*); //
23 // This constructor will be used instead of the default constructor. //
24 // //
25 // Also the pragma: //
26 // #pragma link C++ ioctortype MyMarker; //
27 // can be used to tell rootcint that a constuctor taking a MyMarker* //
28 // should be used whenever available. //
29 // //
30 //////////////////////////////////////////////////////////////////////////
31 
33 {
34  // For now intentionally empty.
35 };
36 
37 #endif