/usr/include/magics/ThreadNode.h is in libmagics++-dev 2.18.15-5.
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 | /*! \file ThreadNode.h
\brief Definition of the Template class ThreadNode.
Magics Team - ECMWF 2008
Started: Tue 23-Sep-2008
Changes:
*/
#ifndef ThreadNode_H
#define ThreadNode_H
#include "magics.h"
#include "BasicSceneObject.h"
namespace magics {
class ThreadNode: public BasicSceneObject {
public:
ThreadNode();
virtual ~ThreadNode();
void visit(BasicGraphicsObjectContainer&);
protected:
//! Method to print string about this class on to a stream of type ostream (virtual).
virtual void print(ostream&) const;
private:
//! Copy constructor - No copy allowed
ThreadNode(const ThreadNode&);
//! Overloaded << operator to copy - No copy allowed
ThreadNode& operator=(const ThreadNode&);
};
} // namespace magics
#endif
|