// @(#)root/meta:$Id$
// Author: Philippe Canal 15/03/2005

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TRootIOCtor
#define ROOT_TRootIOCtor

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TRootIOCtor                                                          //
//                                                                      //
// Helper class used to mark a constructor to be used by ROOT instead   //
// of the default constructor.                                          //
// If rootcint sees in a class declaration of the class MyClass:        //
//    MyClass(TRootIOCtor*);                                            //
// This constructor will be used instead of the default constructor.    //
//                                                                      //
// Also the pragma:                                                     //
//   #pragma link C++ ioctortype MyMarker;                              //
// can be used to tell rootcint that a constuctor taking a MyMarker*    //
// should be used whenever available.                                   //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

class TRootIOCtor
{
   // For now intentionally empty.
};

#endif
 TRootIOCtor.h:1
 TRootIOCtor.h:2
 TRootIOCtor.h:3
 TRootIOCtor.h:4
 TRootIOCtor.h:5
 TRootIOCtor.h:6
 TRootIOCtor.h:7
 TRootIOCtor.h:8
 TRootIOCtor.h:9
 TRootIOCtor.h:10
 TRootIOCtor.h:11
 TRootIOCtor.h:12
 TRootIOCtor.h:13
 TRootIOCtor.h:14
 TRootIOCtor.h:15
 TRootIOCtor.h:16
 TRootIOCtor.h:17
 TRootIOCtor.h:18
 TRootIOCtor.h:19
 TRootIOCtor.h:20
 TRootIOCtor.h:21
 TRootIOCtor.h:22
 TRootIOCtor.h:23
 TRootIOCtor.h:24
 TRootIOCtor.h:25
 TRootIOCtor.h:26
 TRootIOCtor.h:27
 TRootIOCtor.h:28
 TRootIOCtor.h:29
 TRootIOCtor.h:30
 TRootIOCtor.h:31
 TRootIOCtor.h:32
 TRootIOCtor.h:33
 TRootIOCtor.h:34
 TRootIOCtor.h:35
 TRootIOCtor.h:36
 TRootIOCtor.h:37