I am having trouble initializing a vector of structures in my header file.
bins.h
#ifndef BINS_H
#define BINS_H
#include <vector>;
using namespace std;
struct bin
{
//...
bin() {
//...
}
};
class Bins {
public:
Bins();
vector<bin> getBins();
bin getBin(int i);
//...
private:
vector<bin> bins;
};
#endif
errors
(This is line: vector<bin> getBins();)
C:\...\bins.h:34: error: type/value mismatch at argument 1 in template parameter list for 'template<class _Tp, class _Alloc> class std::vector'
C:\...\bins.h:34: error: expected a type, got 'bin'
C:\...\bins.h:34: error: template argument 2 is invalid
(This is line: bin getBin(int i);)
C:\...\bins.h:35: error: 'bin' does not name a type
(This is line: vector<bin> bins;)
C:\...\bins.h:43: error: expected a type, got 'bin'
C:\...\bins.h:43: error: template argument 2 is invalid
I don't have much experience with C++; however, I have used vectors of structures this way before without any problems. Any advice is appreciated.
Edit: This is with all other sections of the code commented out.
using namespace std;in a header file is generally considered bad since it forces the same on everyone that uses your headerfile without them knowing. – Flexo♦ Nov 3 '11 at 22:42struct binisn't visible at the time of your definition ofclass Bins. (Also, Marlon is right about the semicolon, and that very same advice was given to you very recently in a similar question you posted. Learning from past errors is crucial if you want to advance!) – Kerrek SB Nov 3 '11 at 22:44