You have to declare the constructor in your class if you want to provide a definition for it. You are only doing the second thing.
Also, your original class definition contains some mistakes: no parentheses are needed after the class name, and a semicolon is needed after the final curly brace.
class someclass
{
someClass(); // Here you DECLARE your constructor
};
...
someclass::someclass() // Here you DEFINE your constructor
{
...
}