/********************************************************************
*       (c) Copyright 2006, Hogeschool voor de Kunsten Utrecht
*                       Hilversum, the Netherlands
*********************************************************************
*
* File name     : namespace.cpp
* System name   : c++ programming course
* 
*
* Description   : Namespace
*
*
* Author        : Marc_G
* E-mail        : marcg@dinkum.nl
*
********************************************************************/

#include <iostream>
#include <string>

//using namespace std;
using std::cout;
using std::endl;
using std::string;

namespace HKU {
  long getal=42;

  class string 
  {
    public:
      string(){cout << "HKU string initialised" << endl;}
    private:
	int dummy;
  };
} // namespace HKU



int main(int argc, char **argv)
{
long getal=5;
string s;
HKU::string g;

  cout << "std getal: " << getal << endl;
  cout << "HKU getal: " << HKU::getal << endl;

  return 0;
} // main()

