aboutsummaryrefslogtreecommitdiff
path: root/Examples/javascript/namespace/example.cxx
blob: 5beeb09fe768d694b5c2bfa03540e35e1f960d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* File : example.c */

#include <iostream>
#include "example.h"

#define M_PI 3.14159


/* A global variable */
namespace nspace
{
double Foo = 3.0;

/* Compute the greatest common divisor of positive integers */
int gcd(int x, int y) {
  int g;
  g = y;
  while (x > 0) {
    g = x;
    x = y % x;
    y = g;
  }
  return g;
}

Circle::Circle(): radius(1.0) {}

Circle::Circle(double r): radius(r) {
    std::cout << "created Circle with r=" << radius << std::endl;
}

double Circle::area() {
    std::cout << "Circle::area called, r=" << radius << std::endl;
    return M_PI*radius*radius;
}
}