Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Object Oriented c++ Visual Studio Problem.

Object Oriented c++ Visual Studio Problem.

Scheduled Pinned Locked Moved C / C++ / MFC
c++oophelpcsharpvisual-studio
5 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    RobNO
    wrote on last edited by
    #1

    Hey Everyone. My problem is it seems that when I create a .cpp file for a .hpp, when dealing with inheritance, I get the same error which is : 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2146: syntax error : missing ';' before identifier 'GeoGroup' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2470: 'GeoGroup' : looks like a function definition, but there is no parameter list; skipping apparent body 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2059: syntax error : 'public' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(14) : error C2653: 'GeoGroup' : is not a class or namespace name 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(15) : error C2270: 'draw' : modifiers not allowed on nonmember functions 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2228: left of '.size' must have class/struct/union 5> type is ''unknown-type'' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2227: left of '->move' must point to class/struct/union/generic type 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'refpoint' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(19) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\info

    G L X 3 Replies Last reply
    0
    • R RobNO

      Hey Everyone. My problem is it seems that when I create a .cpp file for a .hpp, when dealing with inheritance, I get the same error which is : 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2146: syntax error : missing ';' before identifier 'GeoGroup' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2470: 'GeoGroup' : looks like a function definition, but there is no parameter list; skipping apparent body 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2059: syntax error : 'public' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(14) : error C2653: 'GeoGroup' : is not a class or namespace name 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(15) : error C2270: 'draw' : modifiers not allowed on nonmember functions 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2228: left of '.size' must have class/struct/union 5> type is ''unknown-type'' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2227: left of '->move' must point to class/struct/union/generic type 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'refpoint' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(19) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\info

      G Offline
      G Offline
      Graham Breach
      wrote on last edited by
      #2

      The keyword class should have a lower-case 'c'.

      R 1 Reply Last reply
      0
      • G Graham Breach

        The keyword class should have a lower-case 'c'.

        R Offline
        R Offline
        RobNO
        wrote on last edited by
        #3

        :doh: Thank you very much :-D :-D RobNO

        1 Reply Last reply
        0
        • R RobNO

          Hey Everyone. My problem is it seems that when I create a .cpp file for a .hpp, when dealing with inheritance, I get the same error which is : 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2146: syntax error : missing ';' before identifier 'GeoGroup' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2470: 'GeoGroup' : looks like a function definition, but there is no parameter list; skipping apparent body 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2059: syntax error : 'public' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(14) : error C2653: 'GeoGroup' : is not a class or namespace name 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(15) : error C2270: 'draw' : modifiers not allowed on nonmember functions 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2228: left of '.size' must have class/struct/union 5> type is ''unknown-type'' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2227: left of '->move' must point to class/struct/union/generic type 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'refpoint' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(19) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\info

          L Offline
          L Offline
          Luc Pattyn
          wrote on last edited by
          #4

          RobNO wrote:

          This seems to me to be a linking problem

          when the first error message says "missing ;" it is a compiler error, not a linking problem. :)

          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


          I only read formatted code with indentation, so please use PRE tags for code snippets.


          I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).


          1 Reply Last reply
          0
          • R RobNO

            Hey Everyone. My problem is it seems that when I create a .cpp file for a .hpp, when dealing with inheritance, I get the same error which is : 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2146: syntax error : missing ';' before identifier 'GeoGroup' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2470: 'GeoGroup' : looks like a function definition, but there is no parameter list; skipping apparent body 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.hpp(20) : error C2059: syntax error : 'public' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(14) : error C2653: 'GeoGroup' : is not a class or namespace name 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(15) : error C2270: 'draw' : modifiers not allowed on nonmember functions 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(16) : error C2228: left of '.size' must have class/struct/union 5> type is ''unknown-type'' 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2227: left of '->move' must point to class/struct/union/generic type 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(18) : error C2065: 'refpoint' : undeclared identifier 5>c:\users\rob\school work\information technology\computer programming with c++\projects\inherit_1\inherit_5\geogroup.cpp(19) : error C2065: 'elems' : undeclared identifier 5>c:\users\rob\school work\info

            X Offline
            X Offline
            xtofl
            wrote on last edited by
            #5

            An often ocurring syntax error: a class declaration should end with a semicolumn.

            // -> no semi column => compiler sees this:
            class C {
            } void f(){
            }
            // which is invalid syntax.

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups