Header File for Xcode

I tried creating a header file using the following:

#ifndef STRINGTOINT_H
#define STRINGTOINT_H
#include <string>

function (stuff)
{
function I wrote...
}

#endif

Then later when I tried to include it using:

#include <StringtoInt.h>

and it said "No such file or directory."

Any help? Thanks in advance!
#include "StringtoInt.h"
Did you actually save the header as "StringtInt.h", and is the header actually in the same directory as your source file or your compilers search path?
Topic archived. No new replies allowed.