/usr/include/netsvcs/Base_Optimizer.h is in libnetsvcs-dev 6.4.5+dfsg-1build2.
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 | /* -*- C++ -*- */
//=============================================================================
/**
* @file Base_Optimizer.h
*
* @author Per Andersson.
*/
//=============================================================================
#ifndef BASE_OPTIMIZER_H
#define BASE_OPTIMIZER_H
#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class Base_Optimizer
*
* Thanks to Nathan Myers and Fergus Henderson for this little
* beauty.
*/
template<class Base, class Member>
class Base_Optimizer : public Base
{
public:
Base_Optimizer (void);
Base_Optimizer (const Base &base);
Base_Optimizer (const Base &base,
const Member &member);
Member m_;
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "Base_Optimizer.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("Base_Optimizer.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
#endif /* BASE_OPTIMIZER_H */
|