00001 /* 00002 * This file is part of ALVAR, A Library for Virtual and Augmented Reality. 00003 * 00004 * Copyright 2007-2012 VTT Technical Research Centre of Finland 00005 * 00006 * Contact: VTT Augmented Reality Team <alvar.info@vtt.fi> 00007 * <http://www.vtt.fi/multimedia/alvar.html> 00008 * 00009 * ALVAR is free software; you can redistribute it and/or modify it under the 00010 * terms of the GNU Lesser General Public License as published by the Free 00011 * Software Foundation; either version 2.1 of the License, or (at your option) 00012 * any later version. 00013 * 00014 * This library is distributed in the hope that it will be useful, but WITHOUT 00015 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00016 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License 00017 * for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public License 00020 * along with ALVAR; if not, see 00021 * <http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html>. 00022 */ 00023 00024 #include "Alvar.h" 00025 00026 #include <iostream> 00027 00028 namespace alvar { 00029 00030 void alvarInfo() 00031 { 00032 std::cerr << "ALVAR " << ALVAR_VERSION << " - A Library for Virtual and Augmented Reality" << std::endl; 00033 std::cerr << "Copyright 2007-2012 VTT Technical Research Centre of Finland" << std::endl; 00034 std::cerr << "Licensed under the GNU Lesser General Public License" << std::endl; 00035 std::cerr << "Built on " << ALVAR_DATE << " for " << ALVAR_SYSTEM << std::endl; 00036 std::cerr << std::endl; 00037 } 00038 00039 struct AlvarLoader { 00040 AlvarLoader() { 00041 alvarInfo(); 00042 } 00043 } alvarBasicLoader; 00044 00045 } // namespace alvar