/usr/include/sipxtapi/os/OsNameDbInit.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | //
// Copyright (C) 2007 Jaroslav Libak
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2007 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2004-2007 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef OsNameDbInit_h__
#define OsNameDbInit_h__
// SYSTEM INCLUDES
// APPLICATION INCLUDES
// DEFINES
// Be sure to include all dependencies in the right order!
#include "utl/UtlInit.h" // OsNameDb uses Utl
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// FORWARD DECLARATIONS
// STRUCTS
// TYPEDEFS
/**
* @brief OsNameDB initializer class. Solves the problem with ordering of
* constructors & destructors.
*
* The h file needs to be included in:
* - all cpp files whose static members are initialized in OsNameDBInit
* constructor, in order to make sure they are initialized properly whenever
* they are linked into program.
* - it also has to be included as the first include in cpp files, that
* initialize static members whose constructor or destructor tries to use any
* static members we initialize here.
*/
class OsNameDBInit
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/* ============================ CREATORS ================================== */
///@name Creators
//@{
/// Constructor
OsNameDBInit(void);
/// Destructor
~OsNameDBInit(void);
//@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
static unsigned int msCount; ///< Class instance counter.
};
/*
* This fixes constructor/destructor ordering by declaring a static instance
* of this Init class in every cpp file where this .h file is included.
* Thus constructor of this class will be run first, and destructor as the last.
*/
static OsNameDBInit gOsNameDBInit;
#endif // OsNameDbInit_h__
|