Cygwin Compile Error in AppDelegate.h

I include Server.h into AppDelegate.h header. When i use cgywin to compile it, it shows some errror messages.
But i include Server.h into AppDelegate.cpp. Then compile sucessfully.

Can anyone help me?

Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := game_logic_static
LOCAL_MODULE_FILENAME := libgame_logic
LOCAL_SRC_FILES := AppDelegate.cpp Server.cpp
LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
LOCAL_STATIC_LIBRARIES := png_static_prebuilt
LOCAL_STATIC_LIBRARIES = xml2_static_prebuilt
LOCAL_STATIC_LIBRARIES
= jpeg_static_prebuilt
LOCAL_WHOLE_STATIC_LIBRARIES += cocos2dx_static
LOCAL_SHARED_LIBRARIES := cocosdenshion_shared

include $(BUILD_STATIC_LIBRARY)
$(call import-module,cocos2dx/platform/third_party/android/modules/libpng)
$(call import-module,cocos2dx/platform/third_party/android/modules/libxml2)
$(call import-module,cocos2dx/platform/third_party/android/modules/libjpeg)

Thanks you.

Error Message:

In file included from jni/helloworld/main.cpp:1:
jni/…/…/Classes/AppDelegate.h:10:21: error: Server.h: No such file or directory
In file included from jni/helloworld/main.cpp:1:
jni/…/…/Classes/AppDelegate.h:70: error: ISO C++ forbids declaration of ‘Server’ with no type
jni/…/…/Classes/AppDelegate.h:70: error: expected ‘;’ before ‘*’ token

Error Message:

In file included from jni/helloworld/main.cpp:1:
jni/…/…/Classes/AppDelegate.h:10:21: error: Server.h: No such file or directory
In file included from jni/helloworld/main.cpp:1:
jni/…/…/Classes/AppDelegate.h:70: error: ISO C++ forbids declaration of ‘Server’ with no type
jni/…/…/Classes/AppDelegate.h:70: error: expected ‘;’ before ‘*’ token