/Source/externals/GData/Source/Clients/Spreadsheets/GDataSpreadsheetColumn.h

http://google-email-uploader-mac.googlecode.com/ · C++ Header · 40 lines · 11 code · 10 blank · 19 comment · 1 complexity · c53db4d2f55cc2663ac907f952956bdc MD5 · raw file

  1. /* Copyright (c) 2009 Google Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. //
  16. // GDataSpreadsheetColumn.h
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_SPREADSHEET_SERVICE
  19. #import "GDataObject.h"
  20. // For table columns, like:
  21. // <gs:column index="b" name="Birthday" />
  22. @interface GDataSpreadsheetColumn : GDataObject <GDataExtension>
  23. + (GDataSpreadsheetColumn *)columnWithIndexString:(NSString *)indexStr
  24. name:(NSString *)name;
  25. - (NSString *)name;
  26. - (void)setName:(NSString *)str;
  27. - (NSString *)indexString;
  28. - (void)setIndexString:(NSString *)str;
  29. @end
  30. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_SPREADSHEET_SERVICE