// CS1101 AY2009/10 Semester
// Sit-in Lab #1 Set A
// Book.java
// Define a Book class consisting of title, author, edition,
// year published and initial price.
//
// <fill in your name and group number here>

class Book {

    /*************************************************
     * data members
     *************************************************/


    /*************************************************
     * default constructor
     *************************************************/


    /*************************************************
     * 5 accessors
     *************************************************/


    /*************************************************
     * 5 mutators
     *************************************************/


}


