// Modula exponentiation namespace header file
// used to solve x(a) mod n
// kept seperate as should really done as gate 
// applications within a a quantum circuit -  
// bit tricky!

#ifndef modexp_h

#undef AFX_API
#define AFX_API AFX_EXT_CLASS
#define modexp_h

namespace CModexp
{
	int modexp(int, int, int);
};

#endif
