class ALMotionProxy
{
    void setAngles(const AL::ALValue& names, const AL::ALValue& angles, const float& fractionMaxSpeed);
};

int main( int argc, char *argv[] )
{
    
    
    int P=2;
 
    do
        {               
            walk();
        
        }while(P==2);
 
}
 
void walk(void)
{
        
        double fractionMaxSpeed=0.2;
 
        AL::ALValue names = AL::ALValue::array("LHipPitch"); 
 
        AL::ALValue angles  = AL::ALValue::array(-0.4);
                                                                
        motion.setAngles(names, angles, fractionMaxSpeed);
 
}