printPtypeO.cc
Go to the documentation of this file.
00001 /* printPtypeO.cc
00002  */
00003 #include "osl/ptype.h"
00004 #include <iostream>
00005 
00006 using namespace osl;
00007 int main()
00008 {
00009   long ptypeo;
00010   while (std::cin >> ptypeo)
00011   {
00012     PtypeO p = static_cast<PtypeO>(ptypeo);
00013     std::cout << p << std::endl;
00014   }
00015 }
00016 
00017 
00018 /* ------------------------------------------------------------------------- */
00019 // ;;; Local Variables:
00020 // ;;; mode:c++
00021 // ;;; c-basic-offset:2
00022 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines