• Categories

  • Pages

  • Tags

  • Archives

  • Meta

  • give typical ways by which type of information system supports communication and decision making?

    Posted by admin on September 22nd, 2009 and filed under decision making information system | 1 Comment »


    Just add the following table and change it to your values

    class Shape {
    public:// interface to users of Shapes
    virtual void draw() const;
    virtual void rotate(int degrees);
    // …
    protected:// common data (for implementers of Shapes)
    Point center;
    Color col;
    // …
    };

    class Circle : public Shape {
    public:
    void draw() const;
    void rotate(int) { }
    // …
    protected:
    int radius;
    // …
    };

    class Triangle : public Shape {
    public:
    void draw() const;
    void rotate(int);
    // …
    protected:
    Point a, b, c;
    // …
    };

    One Response

    1. Xavier Says:

      Just add the following table and change it to your values

      class Shape {
      public:// interface to users of Shapes
      virtual void draw() const;
      virtual void rotate(int degrees);
      // …
      protected:// common data (for implementers of Shapes)
      Point center;
      Color col;
      // …
      };

      class Circle : public Shape {
      public:
      void draw() const;
      void rotate(int) { }
      // …
      protected:
      int radius;
      // …
      };

      class Triangle : public Shape {
      public:
      void draw() const;
      void rotate(int);
      // …
      protected:
      Point a, b, c;
      // …
      };
      References :

    Leave a Comment

    Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.