comparison Postarc/Postarc/Feature/WorkspaceFactory.cs @ 0:1aca3d413885 tip

Initial import of Postarc
author Christian Lins <christian.lins@intevation.de>
date Fri, 05 Oct 2012 23:55:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1aca3d413885
1 /*
2 * Postarc
3 *
4 * Author:
5 * Christian Lins <christian.lins@intevation.de>
6 *
7 * Copyright:
8 * Copyright (C) 2012 Intevation GmbH <http://www.intevation.de/>
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 using System;
25 using System.Collections.Generic;
26 using System.Linq;
27 using System.Text;
28 using System.Runtime.InteropServices;
29 using ESRI.ArcGIS.Geodatabase;
30 using ESRI.ArcGIS.esriSystem;
31
32 namespace Postarc.Feature
33 {
34 [Guid("28FB48CA-697A-4E30-80B1-E4424E9A4C4D")]
35 public class WorkspaceFactory : IWorkspaceFactory
36 {
37 private string clsid = "{28FB48CA-697A-4E30-80B1-E4424E9A4C4D}";
38
39 public bool ContainsWorkspace(string parentDirectory, IFileNames fileNames)
40 {
41 throw new NotImplementedException();
42 }
43
44 public bool Copy(IWorkspaceName workspaceName, string destinationFolder, out IWorkspaceName workspaceNameCopy)
45 {
46 throw new NotImplementedException();
47 }
48
49 public IWorkspaceName Create(string parentDirectory, string Name, IPropertySet connectionProperties, int hWnd)
50 {
51 throw new NotImplementedException();
52 }
53
54 public UID GetClassID()
55 {
56 UID uid = new UID();
57 uid.Value = clsid;
58 return uid;
59 }
60
61 public IWorkspaceName GetWorkspaceName(string parentDirectory, ESRI.ArcGIS.esriSystem.IFileNames fileNames)
62 {
63 throw new NotImplementedException();
64 }
65
66 public bool IsWorkspace(string fileName)
67 {
68 throw new NotImplementedException();
69 }
70
71 public bool Move(IWorkspaceName WorkspaceName, string destinationFolder)
72 {
73 throw new NotImplementedException();
74 }
75
76 public IWorkspace Open(ESRI.ArcGIS.esriSystem.IPropertySet ConnectionProperties, int hWnd)
77 {
78 throw new NotImplementedException();
79 }
80
81 public IWorkspace OpenFromFile(string fileName, int hWnd)
82 {
83 throw new NotImplementedException();
84 }
85
86 public ESRI.ArcGIS.esriSystem.IPropertySet ReadConnectionPropertiesFromFile(string fileName)
87 {
88 throw new NotImplementedException();
89 }
90
91 public esriWorkspaceType WorkspaceType
92 {
93 get { throw new NotImplementedException(); }
94 }
95
96 public string get_WorkspaceDescription(bool plural)
97 {
98 throw new NotImplementedException();
99 }
100 }
101 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)