Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get the following simple C++ program to compile:

#include <stdio.h>
#include <stdlib.h>
using google::protobuf;

int main(void){
    printf("Hello\n");
    return 0;
}

I keep getting the following error:

error: ‘google’ has not been declared

I've linked to -lproto and have protobuf-compiler and libprotobuf-dev installed.

I'm totally stuck now.

Anyone have any ideas?

Many thanks in advance,

share|improve this question
1  
you are missing some header files that has namespace 'google' defined. – YeenFei Aug 9 '11 at 9:46

2 Answers

up vote 4 down vote accepted

You don't include any header which declares the google namespace. You should include the header file generated by the protoc compiler; it pulls in the necessary includes.

share|improve this answer

You forgot to include the header for Protocol Buffers, so the google namespace is not declared.

share|improve this answer
I don't mean to be silly, but how would I do that? – Eamorr Aug 9 '11 at 9:47
Include the header file that the protobuf compiler generated. – larsmans Aug 9 '11 at 9:48
A diagram would be great, thnx – Eamorr Aug 9 '11 at 9:49
@Iarsmans. I got it all working now... using namespace google::protobuf; I feel like such a noob... – Eamorr Aug 9 '11 at 9:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.