00001 /** 00002 *\file main.cpp 00003 * 00004 *\brief Lecture one of week one(AM): test RGB class. 00005 * 00006 */ 00007 00008 00009 #include "RGB.h" 00010 #include <iostream> 00011 00012 using namespace columbia; 00013 00014 int main() 00015 { 00016 try 00017 { 00018 // put here any operations on RGB class. 00019 } 00020 catch(char const* msg) 00021 { 00022 std :: cerr << msg << std :: endl; 00023 } 00024 00025 return 0; 00026 }
1.3.6