1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
// ======================================================================
// -*- C++ -*-
// $Id: testNoncopyable.cc,v 1.2 2010/06/16 14:15:01 garren Exp $
// ---------------------------------------------------------------------------
// Test compilability of Utility/noncopyable.h
//
// W. E. Brown, 2010-03-19
// ======================================================================
#include "CLHEP/Utility/noncopyable.h"
using namespace CLHEP;
using CLHEP::noncopyable;
int main() {
return 0;
}
|