00001 00007 #include <iostream> 00008 #include <cstdlib> 00009 #include "bitstreamelement.h" 00010 00011 int main(int argc, char *argv[]) { 00012 00013 using namespace std; 00014 00015 BITSTREAM_ELEMENT be1; 00016 BITSTREAM_ELEMENT be2 = 5; 00017 00018 cout << be1 << endl; 00019 cout << be2 << endl; 00020 00021 cout << "hello" << "\n"; 00022 system("PAUSE"); 00023 return 0; 00024 } 00025 00026
1.2.18