~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/CBinding/ObjCppLanguageBinding.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// ObjCLanguageBinding.cs
 
3
//
 
4
// Authors:
 
5
//   Marcos David Marin Amador <MarcosMarin@gmail.com>
 
6
//
 
7
// Copyright (C) 2007 Marcos David Marin Amador
 
8
//
 
9
//
 
10
// This source code is licenced under The MIT License:
 
11
//
 
12
// Permission is hereby granted, free of charge, to any person obtaining
 
13
// a copy of this software and associated documentation files (the
 
14
// "Software"), to deal in the Software without restriction, including
 
15
// without limitation the rights to use, copy, modify, merge, publish,
 
16
// distribute, sublicense, and/or sell copies of the Software, and to
 
17
// permit persons to whom the Software is furnished to do so, subject to
 
18
// the following conditions:
 
19
// 
 
20
// The above copyright notice and this permission notice shall be
 
21
// included in all copies or substantial portions of the Software.
 
22
// 
 
23
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
24
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
25
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
26
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
27
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
28
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
29
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
30
//
 
31
 
 
32
using System;
 
33
using System.IO;
 
34
 
 
35
using Mono.Addins;
 
36
 
 
37
using MonoDevelop.Projects;
 
38
using MonoDevelop.Core;
 
39
using MonoDevelop.Projects.Dom;
 
40
using MonoDevelop.Projects.Dom.Parser;
 
41
using MonoDevelop.Projects.CodeGeneration;
 
42
 
 
43
namespace CBinding
 
44
{
 
45
        public class ObjCppLanguageBinding : ILanguageBinding
 
46
        {
 
47
                public string Language {
 
48
                        get { return "Objective C++"; }
 
49
                }
 
50
                
 
51
                public string SingleLineCommentTag { get { return "//"; } }
 
52
                public string BlockCommentStartTag { get { return "/*"; } }
 
53
                public string BlockCommentEndTag { get { return "*/"; } }
 
54
                
 
55
                public bool IsSourceCodeFile (string fileName)
 
56
                {
 
57
                        return fileName.EndsWith (".mm", StringComparison.OrdinalIgnoreCase) || 
 
58
                               fileName.EndsWith (".M", StringComparison.Ordinal);
 
59
                }
 
60
                
 
61
                public IParser Parser {
 
62
                        get { return null; }
 
63
                }
 
64
                
 
65
                public IRefactorer Refactorer {
 
66
                        get { return null; }
 
67
                }
 
68
                
 
69
                public string GetFileName (string baseName)
 
70
                {
 
71
                        return baseName + ".mm";
 
72
                }
 
73
        }
 
74
}