1
vote
2answers
37 views
C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces
How do you use the .NET speech namespace classes to convert audio in a WAV file to textual form which I can display on the screen or save to file?
I am looking for some tutorial s …
4
votes
2answers
37 views
SelectSingleNode always returns null?
Taking this simplifed example of my XML:
<?xml version="1.0"?>
<message xmlns="http://www.mydomain.com/MyDataFeed" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x …
0
votes
4answers
49 views
C#.NET Namespace name does not exist in namespace error - only when using is outside local namespace directive - why?
Using .NET 2.0, C#, Windows Forms development, Enterprise Library 3.1.
We have a project namespace (call it Project). We also have several sub-namespaces inside of that project, …
0
votes
3answers
63 views
Namespace convention for Objetive-C
I'd like to group classes so they must be referenced like this:
Root.Web
Root.Mail
Root.Audio
Each of the above classes corresponds to a file:
Web.h
Mail.h
Audio.h
The goal …
0
votes
3answers
52 views
How to display XSD validated XML using XSLT
I've been fighting with this for some time now, and haven't been able to find a clear answer to this yet.
As I understand correctly I can store data in an XML file, validate it us …
2
votes
7answers
87 views
Python functions can be given new attributes from outside the scope?
I didn't know you could do this:
def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", …
2
votes
4answers
106 views
friend function within a namespace
When a friend function is included in the namespace, its definition needs to be prefixed with namespace to compile it, here is the sample code:
test.h:
#ifndef TEST_H
#define TES …
0
votes
3answers
101 views
Separating Enums from Class Definitions using Namespaces in C++?
I'm working with a legacy class that looks like this:
class A
{
enum Flags { One = 1, Two = 2 };
};
I'd like to pull out all the enums into a new namespace defined in a new …
1
vote
1answer
25 views
DataContractSerializer with Multiple Namespaces
I am using a DataContractSerializer to serialize an object to XML. The main object is SecurityHolding with the namespace "http://personaltrading.test.com/" and contains a property …
1
vote
7answers
165 views
Is nesting namespaces an overkill?
I'm writing a C++ program that has a large number of classes. In my head I can visualise them as distinct collections. For example there's a collection of classes for reading and s …
0
votes
2answers
61 views
XSLT Transform XML with Namespaces
I have some XML that I am trying to transform to HTML using XSLT, but I can't get it to work for the life of me. Can someone tell me what I am doing wrong?
XML
<ArrayOfBrokera …
0
votes
1answer
35 views
Read referenced namespaces from Type
Hi folks,
I need a way to check out all namespaces used by a type via reflection.
namespace My.Program.BaseTypes
{
using System;
using System.Text;
using My.Program.E …
1
vote
5answers
136 views
C++: Equivalent to “using namespace <namespace>” but for classes?
Suppose you have a class with an enum defined within it:
class MyClass {
typedef enum _MyEnum{ a } MyEnum;
}
Is there a way to access the value a from another class without ha …
7
votes
8answers
446 views
Why does everybody use unanchored namespace declarations (i.e. std:: not ::std::)?
It seems to me that using unanchored namespaces is just asking for trouble later when someone puts in a new namespace that happens to have the same name as a root level namespace a …
1
vote
1answer
51 views
How do I use namespaces with Zend Framework?
Namespaces are really useful and PHP had no support for them until the recent few releases, AFAIK.
When I'm using Zend Framework, I have to remember long names with underscores - l …
